Xamarin.iOS Documentation | ComponentOne
C1.iOS.Grid Assembly / C1.iOS.Grid Namespace / GridRowColCollection<T> Class / Contains Method / Contains(T) Method
The object to locate in the ICollection.


In This Topic
    Contains(T) Method
    In This Topic
    Determines whether the ICollection contains a specific value.
    Syntax
    'Declaration
     
    
    Public Overloads Function Contains( _
       ByVal item As T _
    ) As Boolean
    'Usage
     
    
    Dim instance As GridRowColCollection(Of T)
    Dim item As T
    Dim value As Boolean
     
    value = instance.Contains(item)
    public bool Contains( 
       T item
    )

    Parameters

    item
    The object to locate in the ICollection.

    Return Value

    true if item is found in the ICollection; otherwise, false.
    See Also